home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Games Machine 76
/
XENIATGM66.iso
/
Indiana Jones
/
Indiana Jones.exe
/
RESOURCE
/
PREVIEW.GOB
/
cog_gen_particlesystem.cog
< prev
next >
Wrap
Text File
|
1999-11-15
|
410b
|
31 lines
# Jedi Knight Cog Script
#
# 00_PARTICLESYSTEM.COG
#
# Particle System
#
# [KS]
#
# (C) 1997 LucasArts Entertainment Co. All Rights Reserved
symbols
message startup
message pulse
thing ghost0
template partSystem
int dummy local
flex pulsetime=.25
end
code
startup:
setpulse(pulsetime);
return;
pulse:
dummy=CreateThing(partSystem, ghost0);
return;
end